home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / BPNN133U.ZIP / MAKEFILE.DOS < prev    next >
Text File  |  1992-11-19  |  1KB  |  41 lines

  1. #
  2. #
  3. #    NOTE: this make file is for DOS only
  4. #
  5. #    IF your platform is UNIX, please use the makefile makefile.ux
  6. #
  7. #
  8.  
  9. DRIVE = F:
  10. LIB = $(DRIVE)\TC\LIB
  11. INC = $(DRIVE)\TC\INCLUDE
  12.  
  13. final:    bprecog.exe bptrain.exe
  14.  
  15. bprecog.exe:    bprecog.c nntrain.obj nncreat.obj nnerror.obj nndump.obj cparser.obj bprecogv.h random.obj random.h
  16.     tcc -mm -I$(INC) -L$(LIB) bprecog.c nntrain.obj nncreat.obj nnerror.obj nndump.obj cparser.obj random.obj
  17.  
  18. bptrain.exe:    bptrain.c nntrain.obj nncreat.obj nnerror.obj nndump.obj cparser.obj bptrainv.h random.obj random.h timer.obj
  19.     tcc -mm -I$(INC) -L$(LIB) bptrain.c nntrain.obj nncreat.obj nnerror.obj nndump.obj cparser.obj random.obj timer.obj
  20.  
  21. nntrain.obj:    nntrain.c nntype.h nntrain.h nnmath.h nndump.h
  22.     tcc -mm -c -v -I$(INC) nntrain.c
  23.  
  24. nncreat.obj:    nncreat.c nntype.h nnerror.h nncreat.h random.h
  25.     tcc -mm -c -v -I$(INC) nncreat.c
  26.  
  27. nnerror.obj:    nnerror.c nnerror.h
  28.     tcc -mm -c -v -I$(INC) nnerror.c
  29.  
  30. nndump.obj:    nndump.c nntype.h nndump.h
  31.     tcc -mm -c -v -I$(INC) nndump.c
  32.  
  33. cparser.obj:    cparser.c cparser.h
  34.     tcc -mm -c -v -I$(INC) cparser.c
  35.  
  36. random.obj:    random.c random.h
  37.     tcc -mm -c -v -I$(INC) random.c
  38.  
  39. timer.obj:    timer.c timer.h
  40.     tcc -mm -c -v -I$(INC) timer.c
  41.